From 0cdf59d845c119c89af2cfd326d48bc1c49c3989 Mon Sep 17 00:00:00 2001 From: Dirk Brenken Date: Sun, 18 Apr 2021 21:07:37 +0200 Subject: [PATCH] luci-app-adblock: sync with adblock 4.1.1 * support new RPZ-Trigger 'RPZ-CLIENT-IP' (currently bind only) * Reporting tweaks/mailing * cosmetics * sync translations Signed-off-by: Dirk Brenken --- .../resources/view/adblock/dnsreport.js | 10 +- .../resources/view/adblock/overview.js | 28 +- .../luci-app-adblock/po/ar/adblock.po | 306 +++++++++-------- .../luci-app-adblock/po/bg/adblock.po | 289 ++++++++-------- .../luci-app-adblock/po/bn_BD/adblock.po | 289 ++++++++-------- .../luci-app-adblock/po/ca/adblock.po | 295 +++++++++-------- .../luci-app-adblock/po/cs/adblock.po | 298 +++++++++-------- .../luci-app-adblock/po/de/adblock.po | 306 +++++++++-------- .../luci-app-adblock/po/el/adblock.po | 289 ++++++++-------- .../luci-app-adblock/po/en/adblock.po | 289 ++++++++-------- .../luci-app-adblock/po/es/adblock.po | 306 +++++++++-------- .../luci-app-adblock/po/fi/adblock.po | 295 +++++++++-------- .../luci-app-adblock/po/fr/adblock.po | 306 +++++++++-------- .../luci-app-adblock/po/he/adblock.po | 289 ++++++++-------- .../luci-app-adblock/po/hi/adblock.po | 289 ++++++++-------- .../luci-app-adblock/po/hu/adblock.po | 292 +++++++++-------- .../luci-app-adblock/po/it/adblock.po | 292 +++++++++-------- .../luci-app-adblock/po/ja/adblock.po | 306 +++++++++-------- .../luci-app-adblock/po/ko/adblock.po | 295 +++++++++-------- .../luci-app-adblock/po/mr/adblock.po | 289 ++++++++-------- .../luci-app-adblock/po/ms/adblock.po | 292 +++++++++-------- .../luci-app-adblock/po/nb_NO/adblock.po | 301 +++++++++-------- .../luci-app-adblock/po/pl/adblock.po | 306 +++++++++-------- .../luci-app-adblock/po/pt/adblock.po | 306 +++++++++-------- .../luci-app-adblock/po/pt_BR/adblock.po | 306 +++++++++-------- .../luci-app-adblock/po/ro/adblock.po | 300 +++++++++-------- .../luci-app-adblock/po/ru/adblock.po | 309 ++++++++++-------- .../luci-app-adblock/po/sk/adblock.po | 292 +++++++++-------- .../luci-app-adblock/po/sv/adblock.po | 303 +++++++++-------- .../luci-app-adblock/po/templates/adblock.pot | 289 ++++++++-------- .../luci-app-adblock/po/tr/adblock.po | 303 +++++++++-------- .../luci-app-adblock/po/uk/adblock.po | 289 ++++++++-------- .../luci-app-adblock/po/vi/adblock.po | 292 +++++++++-------- .../luci-app-adblock/po/zh_Hans/adblock.po | 306 +++++++++-------- .../luci-app-adblock/po/zh_Hant/adblock.po | 306 +++++++++-------- .../share/rpcd/acl.d/luci-app-adblock.json | 2 +- 36 files changed, 5345 insertions(+), 4515 deletions(-) diff --git a/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js b/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js index 1b245ecde6..d594ec9ec3 100644 --- a/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js +++ b/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js @@ -168,7 +168,7 @@ function handleAction(ev) { 'click': ui.createHandlerFn(this, async function(ev) { var count = document.getElementById('count').value; var search = document.getElementById('search').value.trim().replace(/[^\w\.\-\:]/g,'') || '+'; - L.resolveDefault(fs.exec_direct('/etc/init.d/adblock', ['report', search, count, 'true', 'json']),''); + L.resolveDefault(fs.exec_direct('/etc/init.d/adblock', ['report', 'gen', count, search]),''); var running = 1; while (running === 1) { await new Promise(r => setTimeout(r, 1000)); @@ -190,7 +190,7 @@ function handleAction(ev) { return view.extend({ load: function() { - return L.resolveDefault(fs.exec_direct('/etc/init.d/adblock', ['report', '+', '50', 'false', 'json']),''); + return L.resolveDefault(fs.exec_direct('/etc/init.d/adblock', ['report', 'json', '50', '+']),''); }, render: function(dnsreport) { @@ -204,11 +204,11 @@ return view.extend({ var tbl_top = E('table', { 'class': 'table', 'id': 'top_10' }, [ E('tr', { 'class': 'tr table-titles' }, [ E('th', { 'class': 'th right' }, _('Count')), - E('th', { 'class': 'th' }, _('Name / IP Address')), + E('th', { 'class': 'th' }, _('Clients')), E('th', { 'class': 'th right' }, _('Count')), - E('th', { 'class': 'th' }, _('Domain')), + E('th', { 'class': 'th' }, _('Domains')), E('th', { 'class': 'th right' }, _('Count')), - E('th', { 'class': 'th' }, _('Blocked Domain')) + E('th', { 'class': 'th' }, _('Blocked Domains')) ]) ]); diff --git a/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js b/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js index 5c6b833141..468e8a3421 100644 --- a/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js +++ b/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js @@ -30,7 +30,11 @@ function handleAction(ev) { E('select', { 'class': 'cbi-input-select', 'id': 'timerA' }, [ E('option', { 'value': 'start' }, 'Start'), E('option', { 'value': 'reload' }, 'Reload'), - E('option', { 'value': 'restart' }, 'Restart') + E('option', { 'value': 'restart' }, 'Restart'), + E('option', { 'value': 'suspend' }, 'Suspend'), + E('option', { 'value': 'resume' }, 'Resume'), + E('option', { 'value': 'report gen' }, 'Report'), + E('option', { 'value': 'report mail' }, 'Report & Mail') ]), '\xa0\xa0\xa0', _('Adblock action') @@ -374,7 +378,7 @@ return view.extend({ o = s.taboption('additional', form.Value, 'adb_triggerdelay', _('Trigger Delay'), _('Additional trigger delay in seconds before adblock processing begins.')); o.placeholder = '2'; - o.datatype = 'range(1,120)'; + o.datatype = 'range(1,300)'; o.rmempty = true; o = s.taboption('additional', form.ListValue, 'adb_maxqueue', _('Download Queue'), _('Size of the download queue for download processing (incl. sorting, merging etc.) in parallel.')); @@ -401,11 +405,11 @@ return view.extend({ o.rmempty = true; o = s.taboption('additional', form.ListValue, 'adb_fetchutil', _('Download Utility'), _('List of supported and fully pre-configured download utilities.')); - o.value('', _('- unspecified -')); o.value('uclient-fetch'); o.value('wget'); o.value('curl'); o.value('aria2c'); + o.optional = true; o.rmempty = true; o = s.taboption('additional', form.Value, 'adb_fetchparm', _('Download Parameters'), _('Special config options for the selected download utility.')); @@ -416,12 +420,12 @@ return view.extend({ */ o = s.taboption('adv_dns', form.ListValue, 'adb_dns', _('DNS Backend'), _('List of supported DNS backends with their default list directory. \ To overwrite the default path use the \'DNS Directory\' option.')); - o.value('', _('- unspecified -')); o.value('dnsmasq', _('dnsmasq (/tmp/dnsmasq.d)')); o.value('unbound', _('unbound (/var/lib/unbound)')); - o.value('named', _('named (/var/lib/bind)')); + o.value('named', _('bind (/var/lib/bind)')); o.value('kresd', _('kresd (/etc/kresd)')); o.value('raw', _('raw (/tmp)')); + o.optional = true; o.rmempty = true; o = s.taboption('adv_dns', form.Value, 'adb_dnsdir', _('DNS Directory'), _('Target directory for the generated blocklist \'adb_list.overall\'.')); @@ -441,7 +445,19 @@ return view.extend({ o = s.taboption('adv_dns', form.Flag, 'adb_dnsflush', _('Flush DNS Cache'), _('Flush the DNS Cache before adblock processing as well.')); o.rmempty = true; - o = s.taboption('adv_dns', form.Flag, 'adb_dnsallow', _('Disable DNS Allow'), _('Disable selective DNS whitelisting (RPZ pass through).')); + o = s.taboption('adv_dns', form.Flag, 'adb_dnsallow', _('Disable DNS Allow'), _('Disable selective DNS whitelisting (RPZ-PASSTHRU).')); + o.rmempty = true; + + o = s.taboption('adv_dns', form.DynamicList, 'adb_denyip', _('Block Local Client IPs'), _('Block all requests of certain DNS clients based on their IP address (RPZ-CLIENT-IP). \ + Please note: This feature is currently only supported by bind DNS backend.')); + o.datatype = 'or(ip4addr("nomask"),ip6addr("nomask"))'; + o.optional = true; + o.rmempty = true; + + o = s.taboption('adv_dns', form.DynamicList, 'adb_allowip', _('Allow Local Client IPs'), _('Allow all requests of certain DNS clients based on their IP address (RPZ-CLIENT-IP). \ + Please note: This feature is currently only supported by bind DNS backend.')); + o.datatype = 'or(ip4addr("nomask"),ip6addr("nomask"))'; + o.optional = true; o.rmempty = true; o = s.taboption('adv_dns', form.Flag, 'adb_jail', _('Additional Jail Blocklist'), _('Builds an additional DNS blocklist to block access to all domains except those listed in the whitelist. \ diff --git a/applications/luci-app-adblock/po/ar/adblock.po b/applications/luci-app-adblock/po/ar/adblock.po index 7b36d369be..196905bf9c 100644 --- a/applications/luci-app-adblock/po/ar/adblock.po +++ b/applications/luci-app-adblock/po/ar/adblock.po @@ -11,16 +11,11 @@ msgstr "" "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" "X-Generator: Weblate 4.5.1\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 -msgid "- unspecified -" -msgstr "- غير محدد -" - #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "إجراء" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 msgid "Active Sources" msgstr "المصادر المفعّلة" @@ -29,7 +24,7 @@ msgstr "المصادر المفعّلة" msgid "Adblock" msgstr "أدبلوك" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:36 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:40 msgid "Adblock action" msgstr "إجراء أدبلوك" @@ -49,43 +44,54 @@ msgstr "أضف هذا النطاق (الفرعي) لقائمتك السوداء msgid "Add this (sub-)domain to your local whitelist." msgstr "أضف هذا النطاق (الفرعي) لقائمتك المسموحة المحلية." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "Additional Jail Blocklist" msgstr "قائمة حظر إضافية" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Additional Settings" msgstr "إعدادات إضافية" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "وقت انتظار إضافي بالثواني قبل الشروع في تطبيق إعدادات أدبلوك." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 msgid "Advanced DNS Settings" msgstr "إعدادات DNS متقدمة" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:303 msgid "Advanced E-Mail Settings" msgstr "إعدادات متقدمة للبريد الالكتروني" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:302 msgid "Advanced Report Settings" msgstr "إعدادات متقدمة للتقارير" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "Allow Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "" +"Allow all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "إجابة" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 msgid "Backup Directory" msgstr "مجلد النسخ الاحتياطي" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "Base Temp Directory" msgstr "مجلد التخزين المؤقت الأساسي" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -106,19 +112,27 @@ msgstr "" msgid "Blacklist..." msgstr "القائمة السوداء..." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "Block Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "" +"Block all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "طلبات DNS المحظورة" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 -msgid "Blocked Domain" -msgstr "نطاق محظور" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Blocked Domains" msgstr "نطاقات محظورة" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Blocklist Backup" msgstr "نسخة احتياطية لقائمة الحظر" @@ -130,11 +144,11 @@ msgstr "استعلام لقائمة الحظر" msgid "Blocklist Query..." msgstr "استعلام لقائمة الحظر..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 msgid "Blocklist Sources" msgstr "مصادر قائمة الحظر" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -148,12 +162,12 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 msgid "Cancel" msgstr "إلغاء" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:567 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:582 msgid "Categories" msgstr "فئات" @@ -161,7 +175,11 @@ msgstr "فئات" msgid "Client" msgstr "العميل" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 +msgid "Clients" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:136 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information =2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 4.6-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 -msgid "- unspecified -" -msgstr "- nespecifikováno -" - #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "Akce" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 msgid "Active Sources" msgstr "Aktivní zdroje" @@ -28,7 +23,7 @@ msgstr "Aktivní zdroje" msgid "Adblock" msgstr "Blokování reklamy Adblock" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:36 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:40 msgid "Adblock action" msgstr "Akce Adblocku" @@ -48,44 +43,55 @@ msgstr "Přidejte tuto (sub)doménu na místní blacklist." msgid "Add this (sub-)domain to your local whitelist." msgstr "Přidat tuto (sub)doménu na místní whitelist." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "Additional Jail Blocklist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Additional Settings" msgstr "Další nastavení" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" "Dodatečné zpoždění v sekundách před začátkem zpracování blokování reklamy." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 msgid "Advanced DNS Settings" msgstr "Pokročilá nastavení DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:303 msgid "Advanced E-Mail Settings" msgstr "Pokročilá nastavení e-mailu" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:302 msgid "Advanced Report Settings" msgstr "Pokročilá nastavení hlášení" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "Allow Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "" +"Allow all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "Odpověd" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 msgid "Backup Directory" msgstr "Záložní adresář" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "Base Temp Directory" msgstr "Základní dočasný adresář" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -106,19 +112,27 @@ msgstr "" msgid "Blacklist..." msgstr "Blacklist..." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "Block Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "" +"Block all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 -msgid "Blocked Domain" -msgstr "Blokované domény" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Blocked Domains" msgstr "Blokované domény" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Blocklist Backup" msgstr "Záloha blokovacího seznamu" @@ -130,11 +144,11 @@ msgstr "Dotaz na blokovací seznam" msgid "Blocklist Query..." msgstr "Dotaz na blokovací seznam..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 msgid "Blocklist Sources" msgstr "Zdroje seznamů blokování" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -145,12 +159,12 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 msgid "Cancel" msgstr "Storno" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:567 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:582 msgid "Categories" msgstr "" @@ -158,7 +172,11 @@ msgstr "" msgid "Client" msgstr "Klient" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 +msgid "Clients" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:136 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information 1;\n" "X-Generator: Weblate 4.6-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 -msgid "- unspecified -" -msgstr "- non spécifié -" - #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "Action" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 msgid "Active Sources" msgstr "Sources Actives" @@ -28,7 +23,7 @@ msgstr "Sources Actives" msgid "Adblock" msgstr "Bloqueur de publicité" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:36 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:40 msgid "Adblock action" msgstr "Action Adblock" @@ -48,45 +43,56 @@ msgstr "Ajout sous-domaine au réseau local blacklisté." msgid "Add this (sub-)domain to your local whitelist." msgstr "Ajout sous-domaine au réseau local whitelisté." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "Additional Jail Blocklist" msgstr "Additionnel Bannis Blocklisté" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Additional Settings" msgstr "Paramètres additionnels" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" "Délai de déclenchement supplémentaire en secondes avant que le bloqueur de " "publicité démarre." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 msgid "Advanced DNS Settings" msgstr "Paramètres DNS avancés" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:303 msgid "Advanced E-Mail Settings" msgstr "Paramètres de messagerie électronique avancés" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:302 msgid "Advanced Report Settings" msgstr "Paramètres de rapport avancés" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "Allow Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "" +"Allow all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "Répondre" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 msgid "Backup Directory" msgstr "Répertoire de sauvegarde" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "Base Temp Directory" msgstr "Répertoire Temporaire" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -107,19 +113,27 @@ msgstr "" msgid "Blacklist..." msgstr "Liste noire ..." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "Block Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "" +"Block all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 -msgid "Blocked Domain" -msgstr "Domaines bloqués" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Blocked Domains" msgstr "Domaines bloqués" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Blocklist Backup" msgstr "Sauvegarde de la liste de blocage" @@ -131,11 +145,11 @@ msgstr "Demande Blocklist" msgid "Blocklist Query..." msgstr "Demande Blocklist..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 msgid "Blocklist Sources" msgstr "Sources des listes de blocage" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -150,12 +164,12 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 msgid "Cancel" msgstr "Annuler" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:567 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:582 msgid "Categories" msgstr "" @@ -163,7 +177,11 @@ msgstr "" msgid "Client" msgstr "Client" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 +msgid "Clients" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:136 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information 1;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 -msgid "- unspecified -" -msgstr "" - #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 msgid "Active Sources" msgstr "" @@ -28,7 +23,7 @@ msgstr "" msgid "Adblock" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:36 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:40 msgid "Adblock action" msgstr "" @@ -48,43 +43,54 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "Additional Jail Blocklist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Additional Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 msgid "Advanced DNS Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:303 msgid "Advanced E-Mail Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:302 msgid "Advanced Report Settings" msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "Allow Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "" +"Allow all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 msgid "Backup Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -101,19 +107,27 @@ msgstr "" msgid "Blacklist..." msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "Block Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "" +"Block all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 -msgid "Blocked Domain" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Blocked Domains" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Blocklist Backup" msgstr "" @@ -125,11 +139,11 @@ msgstr "" msgid "Blocklist Query..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 msgid "Blocklist Sources" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -140,12 +154,12 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 msgid "Cancel" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:567 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:582 msgid "Categories" msgstr "" @@ -153,7 +167,11 @@ msgstr "" msgid "Client" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 +msgid "Clients" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:136 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information =20) ? 1 : 2;\n" "X-Generator: Weblate 4.5.2-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 -msgid "- unspecified -" -msgstr "- nieokreślony -" - #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "Akcja" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 msgid "Active Sources" msgstr "Aktywne źródła" @@ -29,7 +24,7 @@ msgstr "Aktywne źródła" msgid "Adblock" msgstr "Blokowanie reklam" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:36 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:40 msgid "Adblock action" msgstr "Akcje Adblock" @@ -49,45 +44,56 @@ msgstr "Dodaj tę (sub-)domenę do Twojej lokalnej czarnej listy." msgid "Add this (sub-)domain to your local whitelist." msgstr "Dodaj tę (pod-)domenę do Twojej lokalnej białej listy." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "Additional Jail Blocklist" msgstr "Dodatkowa lista blokująca" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Additional Settings" msgstr "Dodatkowe ustawienia" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" "Dodatkowe opóźnienie wyzwalacza w sekundach przed rozpoczęciem przetwarzania " "adblocka." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 msgid "Advanced DNS Settings" msgstr "Ustawienia DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:303 msgid "Advanced E-Mail Settings" msgstr "Zaawansowane ustawienia e-mail" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:302 msgid "Advanced Report Settings" msgstr "Ustawienia raportowania" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "Allow Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "" +"Allow all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "Odpowiedź" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 msgid "Backup Directory" msgstr "Katalog kopii zapasowej" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "Base Temp Directory" msgstr "Podstawowy katalog tymczasowy" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -108,19 +114,27 @@ msgstr "" msgid "Blacklist..." msgstr "Czarna lista..." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "Block Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "" +"Block all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "Zablokowane żądania DNS" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 -msgid "Blocked Domain" -msgstr "Zablokowana domena" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Blocked Domains" msgstr "Zablokowane domeny" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Blocklist Backup" msgstr "Kopia zapasowa list blokujących" @@ -132,11 +146,11 @@ msgstr "Zapytanie do list blokujących" msgid "Blocklist Query..." msgstr "Zapytanie..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 msgid "Blocklist Sources" msgstr "Źródła list" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -151,12 +165,12 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 msgid "Cancel" msgstr "Anuluj" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:567 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:582 msgid "Categories" msgstr "Kategorie" @@ -164,7 +178,11 @@ msgstr "Kategorie" msgid "Client" msgstr "Klient" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 +msgid "Clients" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:136 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information 1;\n" "X-Generator: Weblate 4.5.2-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 -msgid "- unspecified -" -msgstr "- não especificado -" - #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "Ação" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 msgid "Active Sources" msgstr "Fontes Ativas" @@ -28,7 +23,7 @@ msgstr "Fontes Ativas" msgid "Adblock" msgstr "Adblock" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:36 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:40 msgid "Adblock action" msgstr "Ação do adblock" @@ -48,45 +43,56 @@ msgstr "Adicione este (sub)domínio na sua lista negra local." msgid "Add this (sub-)domain to your local whitelist." msgstr "Adicione este (sub)domínio na sua lista branca local." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "Additional Jail Blocklist" msgstr "Lista de Bloqueio Priosional" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Additional Settings" msgstr "Configurações adicionais" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" "Atraso adicional do gatilho em segundos antes do processamento do adblock " "começar." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 msgid "Advanced DNS Settings" msgstr "Configurações Avançadas do DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:303 msgid "Advanced E-Mail Settings" msgstr "Configurações avançadas de E-Mail" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:302 msgid "Advanced Report Settings" msgstr "Configurações Avançadas do Relatório" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "Allow Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "" +"Allow all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "Resposta" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 msgid "Backup Directory" msgstr "Diretório do Backup" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "Base Temp Directory" msgstr "Diretório Base Temporário" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -108,19 +114,27 @@ msgstr "" msgid "Blacklist..." msgstr "Lista negra..." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "Block Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "" +"Block all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "Solicitações de DNS bloqueadas" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 -msgid "Blocked Domain" -msgstr "Domínio Bloqueado" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Blocked Domains" msgstr "Domínios Bloqueados" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Blocklist Backup" msgstr "Cópia de Segurança da Lista de Bloqueio" @@ -132,11 +146,11 @@ msgstr "Consulta na Lista de Bloqueio" msgid "Blocklist Query..." msgstr "Pesquisando a Lista de Bloqueio..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 msgid "Blocklist Sources" msgstr "Origem da Blocklist" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -151,12 +165,12 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 msgid "Cancel" msgstr "Cancelar" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:567 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:582 msgid "Categories" msgstr "Categorias" @@ -164,7 +178,11 @@ msgstr "Categorias" msgid "Client" msgstr "Cliente" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 +msgid "Clients" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:136 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information 1;\n" "X-Generator: Weblate 4.5.2-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 -msgid "- unspecified -" -msgstr "- não especificado -" - #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "Ação" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 msgid "Active Sources" msgstr "Fontes Ativas" @@ -31,7 +26,7 @@ msgstr "Fontes Ativas" msgid "Adblock" msgstr "Bloqueio de anúncios" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:36 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:40 msgid "Adblock action" msgstr "Ação do adblock" @@ -51,45 +46,56 @@ msgstr "Adicione este (sub)domínio na sua lista negra local." msgid "Add this (sub-)domain to your local whitelist." msgstr "Adicione este (sub)domínio na sua lista branca local." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "Additional Jail Blocklist" msgstr "Lista de Bloqueio Adicional" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Additional Settings" msgstr "Configurações Adicionais" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" "Atraso de gatilho adicional em segundos antes do processamento do adblock " "começar." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 msgid "Advanced DNS Settings" msgstr "Configurações Avançadas do DNS" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:303 msgid "Advanced E-Mail Settings" msgstr "Configurações Avançadas do E-Mail" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:302 msgid "Advanced Report Settings" msgstr "Configurações Avançadas do Relatório" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "Allow Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "" +"Allow all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "Resposta" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 msgid "Backup Directory" msgstr "Diretório da cópia de segurança" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "Base Temp Directory" msgstr "Diretório Base Temporário" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -111,19 +117,27 @@ msgstr "" msgid "Blacklist..." msgstr "Lista negra..." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "Block Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "" +"Block all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "Requisições bloqueadas do DNS" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 -msgid "Blocked Domain" -msgstr "Domínios Bloqueados" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Blocked Domains" msgstr "Domínios Bloqueados" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Blocklist Backup" msgstr "Cópia de Segurança da Lista de Bloqueio" @@ -135,11 +149,11 @@ msgstr "Consulta na Lista de Bloqueio" msgid "Blocklist Query..." msgstr "Pesquisando a Lista de Bloqueio..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 msgid "Blocklist Sources" msgstr "Fontes das listas de bloqueio" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -154,12 +168,12 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 msgid "Cancel" msgstr "Cancelar" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:567 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:582 msgid "Categories" msgstr "Categorias" @@ -167,7 +181,11 @@ msgstr "Categorias" msgid "Client" msgstr "Cliente" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 +msgid "Clients" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:136 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information Обратите внимание: для работы этой функции необходим пакет 'tcpdump-mini' " "и полная перезагрузка службы Adblock." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:295 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 msgid "General Settings" msgstr "Общие настройки" @@ -391,15 +411,15 @@ msgstr "Общие настройки" msgid "Grant access to LuCI app adblock" msgstr "Предоставить доступ к приложению Adblock для LuCI" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:223 msgid "Information" msgstr "Информация" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "Jail Directory" msgstr "Папка для «тюрьмы»" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:253 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257 msgid "Last Run" msgstr "Последний запуск" @@ -407,25 +427,25 @@ msgstr "Последний запуск" msgid "Latest DNS Requests" msgstr "Последние DNS-запросы" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:342 msgid "Limit SafeSearch" msgstr "Ограничить Безопасный поиск" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:338 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:342 msgid "Limit SafeSearch to certain providers." msgstr "" "Ограничить использование Безопасного поиска определёнными поисковыми " "службами." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:61 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:65 msgid "Line number to remove" msgstr "Номер строки для удаления" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:483 msgid "List of available network devices used by tcpdump." msgstr "Список доступных сетевых устройств, используемых tcpdump." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 msgid "" "List of available network interfaces to trigger the adblock start. Choose " "'unspecified' to use a classic startup timeout instead of a network trigger." @@ -433,7 +453,7 @@ msgstr "" "Список сетевых интерфейсов для запуска Adblock в случае их доступности. " "Выберите «не определено» для стандартного запуска по тайм-ауту." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:417 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 msgid "" "List of supported DNS backends with their default list directory. To " "overwrite the default path use the 'DNS Directory' option." @@ -441,7 +461,7 @@ msgstr "" "Список поддерживаемых служб DNS с их каталогом по умолчанию. Чтобы " "перезаписать путь по умолчанию, используйте опцию «Каталог DNS»." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:403 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:407 msgid "List of supported and fully pre-configured download utilities." msgstr "" "Список поддерживаемых предварительно настроенных утилит для загрузки списков." @@ -451,14 +471,10 @@ msgstr "" msgid "Log View" msgstr "Просмотр журнала" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 msgid "Low Priority Service" msgstr "Низкий приоритет службы" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 -msgid "Name / IP Address" -msgstr "Имя / IP-адрес" - #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:124 msgid "No Query results!" msgstr "Нет результатов запроса!" @@ -472,7 +488,7 @@ msgstr "Ещё нет журналов, связанных с Adblock!" msgid "Overview" msgstr "Обзор" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:501 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:517 msgid "Profile used by 'msmtp' for adblock notification E-Mails." msgstr "Профиль, используемый 'msmtp' для отправки почтовых уведомлений." @@ -485,7 +501,7 @@ msgid "Query active blocklists and backups for a specific domain." msgstr "" "Поиск определенного домена в активных списках блокировок и резервных копиях." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:505 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:521 #, fuzzy msgid "" "Raise the notification count, to get E-Mails if the overall blocklist count " @@ -494,11 +510,11 @@ msgstr "" "Увеличение количества уведомлений для отправки письма в случае, если " "количество блокировок не превышает указанного числа." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:363 msgid "Receiver address for adblock notification e-mails." msgstr "Адрес получателя для уведомлений по электронной почте." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:314 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:318 msgid "" "Redirect all DNS queries from specified zones to the local DNS resolver, " "applies to UDP and TCP protocol." @@ -506,7 +522,7 @@ msgstr "" "Перенаправление всех DNS-запросов из указанных зон к локальной службе DNS " "Lookup. Применяется к протоколам TCP и UDP." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:374 msgid "" "Reduce the priority of the adblock background processing to take fewer " "resources from the system. Please note: This change requires a full adblock " @@ -528,7 +544,7 @@ msgstr "Обновить отчёт DNS" msgid "Refresh Timer" msgstr "Обновить таймер" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:262 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:266 msgid "Refresh Timer..." msgstr "Обновить таймер..." @@ -536,47 +552,47 @@ msgstr "Обновить таймер..." msgid "Refresh..." msgstr "Обновить..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:347 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:351 msgid "Relax SafeSearch" msgstr "Ослабить Безопасный поиск" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:277 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:281 msgid "Reload" msgstr "Перезапустить" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:57 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:61 msgid "Remove an existing job" msgstr "Удалить существующее задание" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:492 msgid "Report Chunk Count" msgstr "Количество фрагментов отчёта" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "Report Chunk Size" msgstr "Размер фрагментов отчёта" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:488 msgid "Report Directory" msgstr "Папка для отчётов" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:483 msgid "Report Interface" msgstr "Интерфейсы в отчёте" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:502 msgid "Report Ports" msgstr "Порты в отчёте" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:476 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:492 msgid "Report chunk count used by tcpdump." msgstr "Количество фрагментов отчёта, используемых tcpdump." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:481 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 msgid "Report chunk size used by tcpdump in MByte." msgstr "Размер фрагментов отчёта, используемых tcpdump, в мегабайтах." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:288 msgid "Restart" msgstr "Перезапустить" @@ -584,30 +600,30 @@ msgstr "Перезапустить" msgid "Result" msgstr "Результат" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:245 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:249 msgid "Run Directories" msgstr "Рабочие папки" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:249 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:253 #, fuzzy msgid "Run Flags" msgstr "Рабочие флаги" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:241 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:245 msgid "Run Interfaces" msgstr "Рабочие интерфейсы" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:237 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:241 msgid "Run Utils" msgstr "Рабочие утилиты" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:39 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:102 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:106 msgid "Save" msgstr "Сохранить" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:359 msgid "" "Send adblock related notification e-mails. Please note: this needs " "additional 'msmtp' package installation." @@ -615,7 +631,7 @@ msgstr "" "Отправлять на e-mail уведомления, касающиеся Adblock.
Обратите " "внимание: требуется установка дополнительного пакета \"msmtp\"." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:493 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:509 msgid "Sender address for adblock notification E-Mails." msgstr "E-Mail адрес отправителя уведомлений Adblock." @@ -623,11 +639,11 @@ msgstr "E-Mail адрес отправителя уведомлений Adblock. msgid "Set a new adblock job" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 msgid "Settings" msgstr "Настройки" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:380 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:384 msgid "" "Size of the download queue for download processing (incl. sorting, merging " "etc.) in parallel." @@ -635,16 +651,16 @@ msgstr "" "Размер очереди загрузки для параллельной обработки (сортировки, объединения " "и т.п.)." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:527 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:543 #, fuzzy msgid "Sources (Size, Focus)" msgstr "Источники (Размер, Фокусировка)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:486 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:502 msgid "Space separated list of ports used by tcpdump." msgstr "Разделенный пробелами список портов, используемых tcpdump." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:411 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:415 msgid "Special config options for the selected download utility." msgstr "Специальные опции конфигурации для выбранной утилиты загрузки." @@ -652,53 +668,53 @@ msgstr "Специальные опции конфигурации для выб msgid "Start Timestamp" msgstr "Время начала" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:308 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:312 msgid "Startup Trigger Interface" msgstr "Интерфейс для запуска" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:221 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 msgid "Status / Version" msgstr "Статус / Версия" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:274 msgid "Suspend" msgstr "Приостановить" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:472 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:488 msgid "Target directory for DNS related report files." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 msgid "Target directory for blocklist backups." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "Папка для созданного списка блокировки 'adb_list.overall'." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467 msgid "Target directory for the generated jail blocklist 'adb_list.jail'." msgstr "Папка для «тюремного» списка блокировки 'adb_list.jail'." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:82 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:91 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:86 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:95 msgid "The Refresh Timer could not been updated." msgstr "Не удалось обновить таймер обновления." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:84 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:93 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:88 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:97 msgid "The Refresh Timer has been updated." msgstr "Таймер обновления обновлён." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:52 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:56 msgid "The day of the week (opt., values: 1-7 possibly sep. by , or -)" msgstr "День недели (необязательно, значения: 1–7, запятые или дефисы)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:42 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:46 msgid "The hours portition (req., range: 0-23)" msgstr "Распределение часов (обязательно, значения: 0–23)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:47 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:51 msgid "The minutes portion (opt., range: 0-59)" msgstr "Распределение минут (обязательно, значения: 0–59)" @@ -740,7 +756,7 @@ msgstr "" msgid "Time" msgstr "Время" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:431 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:435 msgid "Timeout to wait for a successful DNS backend restart." msgstr "Тайм-аут ожидания успешного перезапуска службы DNS." @@ -754,7 +770,7 @@ msgstr "Чтобы списки были актуальны, настройте msgid "Top 10 Statistics" msgstr "Топ-10 статистики" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:497 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:513 msgid "Topic for adblock notification E-Mails." msgstr "Тема, используемая для отправки электронных писем." @@ -762,7 +778,7 @@ msgstr "Тема, используемая для отправки электр msgid "Total DNS Requests" msgstr "Всего DNS-запросов" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Trigger Delay" msgstr "Задержка запуска" @@ -771,12 +787,12 @@ msgstr "Задержка запуска" msgid "Unable to save changes: %s" msgstr "Невозможно сохранить изменения: %s" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:581 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:597 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:613 msgid "Variants" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:367 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:371 msgid "Verbose Debug Logging" msgstr "Подробный журнал отладки" @@ -793,11 +809,15 @@ msgstr "" msgid "Whitelist..." msgstr "Белый список..." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:420 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:425 +msgid "bind (/var/lib/bind)" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 msgid "dnsmasq (/tmp/dnsmasq.d)" msgstr "dnsmasq (/tmp/dnsmasq.d)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:423 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:426 msgid "kresd (/etc/kresd)" msgstr "kresd (/etc/kresd)" @@ -805,14 +825,27 @@ msgstr "kresd (/etc/kresd)" msgid "max. result set size" msgstr "макс. размер списка результатов" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:422 -msgid "named (/var/lib/bind)" -msgstr "named (/var/lib/bind)" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:427 msgid "raw (/tmp)" msgstr "raw (/tmp)" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:421 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:424 msgid "unbound (/var/lib/unbound)" msgstr "unbound (/var/lib/unbound)" + +#~ msgid "- unspecified -" +#~ msgstr "- не указано -" + +#~ msgid "Blocked Domain" +#~ msgstr "Блокируемый домен" + +#, fuzzy +#~ msgid "Disable selective DNS whitelisting (RPZ pass through)." +#~ msgstr "" +#~ "Запретить избирательное применение белого списка DNS (сквозное RPZ)." + +#~ msgid "Name / IP Address" +#~ msgstr "Имя / IP-адрес" + +#~ msgid "named (/var/lib/bind)" +#~ msgstr "named (/var/lib/bind)" diff --git a/applications/luci-app-adblock/po/sk/adblock.po b/applications/luci-app-adblock/po/sk/adblock.po index ecf2e8b9d8..b96a85a5b1 100644 --- a/applications/luci-app-adblock/po/sk/adblock.po +++ b/applications/luci-app-adblock/po/sk/adblock.po @@ -10,16 +10,11 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 4.1-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 -msgid "- unspecified -" -msgstr "" - #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "Akcia" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 msgid "Active Sources" msgstr "" @@ -28,7 +23,7 @@ msgstr "" msgid "Adblock" msgstr "Blokovanie reklamy Adblock" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:36 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:40 msgid "Adblock action" msgstr "Akcia" @@ -48,46 +43,57 @@ msgstr "Pridať túto (sub-) doménu medzi lokálne zakázané domény." msgid "Add this (sub-)domain to your local whitelist." msgstr "Pridať túto (sub-) doménu medzi lokálne povolené domény." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "Additional Jail Blocklist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Additional Settings" msgstr "Ďalšie nastavenia" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" "Dodatočné oneskorenie v sekundách pred začiatkom spracovania blokovania " "reklamy." -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 msgid "Advanced DNS Settings" msgstr "Pokročilé DNS nastavenia" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:303 msgid "Advanced E-Mail Settings" msgstr "Pokročilé nastavenia e-mailu" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:302 #, fuzzy msgid "Advanced Report Settings" msgstr "Pokročilé nastavenia" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "Allow Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "" +"Allow all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "Odpoveď" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 msgid "Backup Directory" msgstr "Záložný priečinok" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "Base Temp Directory" msgstr "Základný Temp priečinok" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -106,19 +112,27 @@ msgstr "" msgid "Blacklist..." msgstr "Zoznam zakázaných domén..." +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "Block Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "" +"Block all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 -msgid "Blocked Domain" -msgstr "Blokovaná doména" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Blocked Domains" msgstr "Blokované domény" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Blocklist Backup" msgstr "Záloha zoznamu blokovaných domén" @@ -130,11 +144,11 @@ msgstr "" msgid "Blocklist Query..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 msgid "Blocklist Sources" msgstr "Zdroje zoznamov blokovaní" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -145,12 +159,12 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 msgid "Cancel" msgstr "Zrušiť" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:567 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:582 msgid "Categories" msgstr "" @@ -158,7 +172,11 @@ msgstr "" msgid "Client" msgstr "Klient" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 +msgid "Clients" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:136 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information
=20) ? 1 : 2;\n" "X-Generator: Weblate 4.6-dev\n" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:404 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:419 -msgid "- unspecified -" -msgstr "" - #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:258 msgid "Action" msgstr "Дія" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:233 msgid "Active Sources" msgstr "Активні джерела" @@ -29,7 +24,7 @@ msgstr "Активні джерела" msgid "Adblock" msgstr "Adblock" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:36 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:40 msgid "Adblock action" msgstr "" @@ -49,43 +44,54 @@ msgstr "" msgid "Add this (sub-)domain to your local whitelist." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "Additional Jail Blocklist" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 msgid "Additional Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:375 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:379 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:297 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301 msgid "Advanced DNS Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:299 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:303 msgid "Advanced E-Mail Settings" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:298 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:302 msgid "Advanced Report Settings" msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "Allow Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:457 +msgid "" +"Allow all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257 msgid "Answer" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:402 msgid "Backup Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:393 msgid "" "Base Temp Directory for all adblock related runtime operations, e.g. " "downloading, sorting, merging etc." @@ -102,19 +108,27 @@ msgstr "" msgid "Blacklist..." msgstr "" +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "Block Local Client IPs" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:451 +msgid "" +"Block all requests of certain DNS clients based on their IP address (RPZ-" +"CLIENT-IP). Please note: This feature is currently only supported by bind " +"DNS backend." +msgstr "" + #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:313 msgid "Blocked DNS Requests" msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:211 -msgid "Blocked Domain" -msgstr "" - -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:229 msgid "Blocked Domains" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:394 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:398 msgid "Blocklist Backup" msgstr "" @@ -126,11 +140,11 @@ msgstr "" msgid "Blocklist Query..." msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:300 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304 msgid "Blocklist Sources" msgstr "" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463 msgid "" "Builds an additional DNS blocklist to block access to all domains except " "those listed in the whitelist. Please note: You can use this restrictive " @@ -141,12 +155,12 @@ msgstr "" #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:109 #: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:163 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:68 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72 msgid "Cancel" msgstr "Скасувати" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:551 -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:566 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:567 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:582 msgid "Categories" msgstr "" @@ -154,7 +168,11 @@ msgstr "" msgid "Client" msgstr "Клієнт" -#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:132 +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207 +msgid "Clients" +msgstr "" + +#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:136 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS. " "For further information